home *** CD-ROM | disk | FTP | other *** search
Gui4CLI script | 1980-01-03 | 2.0 KB | 78 lines |
- G4C
-
- WinBig -1 -1 450 150 "Area.gc"
- WinType 11110001
-
-
- BOX 0 0 0 0 OUT RIDGE
-
- ; ---- These squares were used for planning the layout. If you want
- ; to see them, remove the ';' at the beginning of each line.
- ;SQUARE 50 30 106 30 2 NOFILL
- ;SQUARE 160 30 106 30 2 NOFILL
- ;SQUARE 270 30 106 30 2 NOFILL
- ;SQUARE 50 62 106 30 2 NOFILL
- ;SQUARE 160 62 106 30 2 NOFILL
- ;SQUARE 270 62 106 30 2 NOFILL
- ;SQUARE 50 94 106 30 2 NOFILL
- ;SQUARE 160 94 106 30 2 NOFILL
- ;SQUARE 270 94 106 30 2 NOFILL
-
- xonLoad
- GuiOpen Area.gc
-
- xonClose
- GuiQuit Area.gc
-
- ; ---- Header text, and nine prompt words in required position.
-
- Text 100 12 210 12 'Which area is clicked on?' 265 BOX
- Text 80 40 10 12 'Click' 6 NOBOX
- Text 190 40 10 12 'near' 6 NOBOX
- Text 294 40 10 12 'any' 4 NOBOX
- Text 86 72 10 12 'one' 4 NOBOX
- Text 190 72 10 12 'of' 3 NOBOX
- Text 290 72 10 12 'these' 6 NOBOX
- Text 80 102 10 12 'nine' 5 NOBOX
- Text 170 102 10 12 'displayed' 10 NOBOX
- Text 290 102 10 12 'words' 6 NOBOX
-
- ; ---- Text to confirm which area clicked, and its visible effect
-
- Text 40 130 100 12 ' Watch here, and observe the differences' 47 NOBOX
- gadid 1
-
- ; ---- Here are the nine xArea commands. As each area is
- ; clicked, gadget 1 is updated for confirmation.
-
- ; ---- Arguments for xArea :
- ; L T W H Effect (Complement, Box, or None)
-
- xArea 50 30 106 30 COMP
- Update Area.gc 1 'You clicked Upper left. Effect : Complement'
-
- xArea 160 30 106 30 BOX
- Update Area.gc 1 'You clicked Upper centre. Effect : Box'
-
- xArea 270 30 106 30 NONE
- Update Area.gc 1 'You clicked Upper right. Effect : NONE'
-
- xArea 50 62 106 30 NONE
- Update Area.gc 1 'You clicked Middle left. Effect : NONE'
-
- xArea 160 62 106 30 COMP
- Update Area.gc 1 'You clicked Middle centre. Effect : Complement'
-
- xArea 270 62 106 30 BOX
- Update Area.gc 1 'You clicked Middle right. Effect : Box'
-
- xArea 50 94 106 30 BOX
- Update Area.gc 1 'You clicked Lower left. Effect : Box'
-
- xArea 160 94 106 30 NONE
- Update Area.gc 1 'You clicked Lower centre. Effect : NONE'
-
- xArea 270 94 106 30 COMP
- Update Area.gc 1 'You clicked Lower right. Effect : Complement'
-
-